From d535e230dd3dd32bec2f60c7583f5ea11394f577 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Wed, 20 May 2009 22:27:27 +0200 Subject: [PATCH] docs: Add .libs directories to BABL_PATHs Also add .libs directories to the BABL_PATHs so that e.g. the BablFishPath introspection chart is properly generated when doing a build, at least on Linux. --- ChangeLog | 6 ++++++ docs/Makefile.am | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee922a0..f09c845 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-05-20 Martin Nordholts + + * docs/Makefile.am: Also add .libs directories to the BABL_PATHs + so that e.g. the BablFishPath introspection chart is properly + generated when doing a build, at least on Linux. + 2009-05-20 Martin Nordholts * docs/index-static.html.in: Convert SVN references to git diff --git a/docs/Makefile.am b/docs/Makefile.am index aa617a0..6c26d32 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -35,13 +35,13 @@ all: $(HTML_FILES) rss BablFishPath.html: $(babl_fish_path_dhtml) echo -n "HTML:" echo -n " $@" - export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\ + export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $< > $@ &&\ echo " [OK]" || echo " Fail" BablFishPath.txt: $(babl_fish_path_fitness) echo -n "UTF8:" echo -n " $@" - export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\ + export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $< > $@ &&\ echo " [OK]" || echo " Fail" if [ "x"$$CRUCIBLE_ID != "x" ] ;then echo;echo;cat $@;echo;echo;fi @@ -55,7 +55,7 @@ index.html: index-static.html \ echo -n "HTML: $@" cp $< $@ (which mktemp > /dev/null 2>&1 && TMPFILE=`mktemp` || TMPFILE="/tmp/babl_build_tempfile" ;\ - export BABL_PATH="$(top_builddir)/extensions"; $(babl_html_dump) > $$TMPFILE;\ + export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $(babl_html_dump) > $$TMPFILE;\ $(SHELL) $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\ rm -f $$TMPFILE ) echo -n "." -- 2.30.2